home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Referal URL.js < prev    next >
Text File  |  1998-06-05  |  185b  |  9 lines

  1. // Show reffering URL, if any
  2.  
  3.     function getref() {
  4.     if (document.referrer == "")
  5.         {document.write("Information not available")}
  6.     else
  7.         {document.write(document.referrer)}
  8.     }
  9.